import { CalendarCheck, Flame } from 'lucide-react'; import { UserProfileDto } from '@/types/account/profile'; type Props = { profile: UserProfileDto; }; export default function UserProfileStats({ profile }: Props) { return (
출석 수 {profile.attendanceCount.toLocaleString()}일
개근 일수 {profile.consecutiveDays.toLocaleString()}일
); }